home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / telecomm / t100.zoo / reverse.c < prev    next >
C/C++ Source or Header  |  1991-09-15  |  573b  |  37 lines

  1. /*
  2.  *    reverse.c
  3.  */
  4.  
  5. #ifndef lint
  6. static char *rcsid_reverse_c = "$Id: reverse.c,v 1.0 1991/09/12 20:32:56 rosenkra Exp $";
  7. #endif
  8.  
  9. /*
  10.  * $Log: reverse.c,v $
  11.  * Revision 1.0  1991/09/12  20:32:56  rosenkra
  12.  * Initial revision
  13.  *
  14.  */
  15.  
  16. #include "reverse.h"
  17.  
  18. int    load_msp_font (int, short *);
  19.  
  20. /*------------------------------*/
  21. /*    fnt_reverse        */
  22. /*------------------------------*/
  23. void fnt_reverse ()
  24. {
  25.  
  26. /*
  27.  *    set font to reverse
  28.  */
  29.  
  30.     extern short    f8x16rv[];    /* font data, reverse */
  31.  
  32.     load_msp_font (1, (short *) f8x16rv);
  33.  
  34.     return;
  35. }
  36.  
  37.